Conditions | 1 |
Total Lines | 9 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { selectById } from '../utils/helpers/Selectors'; |
||
3 | |||
4 | export function createSVGContainer(width: number, height: number) { |
||
5 | return selectById(ElementIds.OVERVIEW_CONTAINER_DIV) |
||
6 | .append('svg') |
||
7 | .attr('id', ElementIds.OVERVIEW_CONTAINER) |
||
8 | .attr('preserveAspectRatio', 'xMidYMid meet') |
||
9 | .attr('viewBox', `0 0 ${width} ${height}`) |
||
10 | .attr('width', width) |
||
11 | .attr('height', height); |
||
12 | } |
||
13 |